Skip to content

Instantly share code, notes, and snippets.

@AKCodez
AKCodez / claude-code-statusline-guide.md
Last active September 22, 2026 09:48
Claude Code Status Line - Complete Guide: all fields, config, ready-to-use scripts

Claude Code Status Line - Complete Guide: all fields, config, ready-to-use scripts

Claude Code Status Line — Complete Guide

A persistent, customizable bar at the bottom of Claude Code that shows real-time session data.

image
@remarkablemark
remarkablemark / gb-to-mb-conversion-table.md
Last active September 22, 2026 09:48
GB to MB Conversion Table
Gigabytes (GB) Megabytes (MB) decimal Megabytes (MB) binary
1 GB 1,000 MB 1,024 MB
2 GB 2,000 MB 2,048 MB
3 GB 3,000 MB 3,072 MB
4 GB 4,000 MB 4,096 MB
5 GB 5,000 MB 5,120 MB
6 GB 6,000 MB 6,144 MB
7 GB 7,000 MB 7,168 MB
8 GB 8,000 MB 8,192 MB
@ijd
ijd / Sublime Text 4213.md
Last active September 22, 2026 09:46
Sublime Text 4213 Crack

Patch with HexEd.it:

Replace 0F B6 51 0C 83 F2 01 with C6 41 0C 01 31 D2 90


Windows Script (run as admin):

py -c "open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb+').write(open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb').read().replace(b'\x0F\xB6\x51\x0C\x83\xF2\x01', b'\xC6\x41\x0C\x01\x31\xD2\x90'))"

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@thetredev
thetredev / remove-snap-from-ubuntu.md
Last active September 22, 2026 09:45
Remove snap from Ubuntu

Remove snap from Ubuntu

Tested with:

  • Ubuntu Desktop 22.04.2
  • Ubuntu Server 22.04.2

Both are VirtualBox VMs on my Void Linux host. Both have been installed using the following options:

  • Normal installation (not minimal), to ensure it's fully bloated
  • With third party drivers

After the install, sudo apt update and sudo apt full-upgrade have been applied. A reboot was done next.

╭─── Claude Code v2.1.12 ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ │ Tips for getting started │
│ Welcome back Jonny! │ Run /init to create a CLAUDE.md file with instructions for Claude │
│ │ │
│ │ ───────────────────────────────────────────────────────────────── │
│ ▐▛███▜▌ │ Recent activity
@antoniolg
antoniolg / AGENTS.md
Last active September 22, 2026 09:42
Codex: autonomous Luna subagent, per-task reasoning effort, and completion callbacks

Luna delegation for Codex

Add the following section to ~/.codex/AGENTS.md and save the companion luna_worker.toml as ~/.codex/agents/luna_worker.toml.

Luna Delegation

  • Primary agents: proactively delegate bounded, self-contained jobs to luna_worker when Luna can complete and verify them independently and delegation saves work or supervision. Suitable jobs include authorized releases through established procedures, focused web research, long-running scripts, batch processing, and straightforward implementation. Handle small operations directly by default, unless there are long waits, useful independent parallel work, or an explicit user request to delegate.
  • Delegate preparation, execution, and verification as one complete job. Build a concise brief from available context and file references; avoid extra parent tool calls solely to prepare the delegation when that information is sufficient. Leave input inspection, artifact preparation, and routine validation to Luna, except where the parent n
🌞 Morning 155 commits █████████▋░░░░░░░░░░░ 46.1%
🌆 Daytime 6 commits ▍░░░░░░░░░░░░░░░░░░░░ 1.8%
🌃 Evening 3 commits ▏░░░░░░░░░░░░░░░░░░░░ 0.9%
🌙 Night 172 commits ██████████▊░░░░░░░░░░ 51.2%
Python ███████████████████░░░░░░░░░░░░░░░░░ 51.31%
HTML ███████████░░░░░░░░░░░░░░░░░░░░░░░░░ 28.14%
CSS ██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 15.96%
JavaScript ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.60%

53 things from ~4 months of running an agent harness in production.

iii, the engine that powers the harness, is really cool too: https://iii.dev/docs/install

  • crash mid tool call left a dangling call with no result that poisoned every later request workers#507 workers#630
  • resumed turn raced the worker booting and called a function that wasn't registered yet workers#507
  • no durable queue for turns so wedged ones sat in running forever workers#464
  • cut stream parsed as null args and got reported as a successful empty turn workers#878
  • seven providers treating any connection close as done workers#878
  • cached tokens double billed on six providers workers#740